e430b0fbb13ef1c3aaeb6ab929a1345cb01f1c17,plugins/groovy/src/org/jetbrains/plugins/groovy/lang/psi/impl/statements/typedef/GrTypeDefinitionImpl.java,GrTypeDefinitionImpl,getBody,#,133

Before Change



  @Nullable
  public GrTypeDefinitionBody getBody() {
    return (GrTypeDefinitionBody)findChildByType(GroovyElementTypes.CLASS_BODY);
  }

  @NotNull

After Change



  @Nullable
  public GrTypeDefinitionBody getBody() {
    return getStubOrPsiChild(GroovyElementTypes.CLASS_BODY);
  }

  @NotNull